The JBoss SNMP Adaptor allows for the SNMP Adaptor Attributes configuration file to specify in the MBean name a mbean query by using wildcards to get back a list of MBean which can be particularly useful for Web Applications by example as shown below :
<!- Web Apps ->
<mbean name="jboss.web:host=localhost,path=/*,type=Manager" oid-prefix=".1.3.6.1.4.1.2312.100.1.1.12.1">
<attribute name="distributable" oid=".1"/>
<attribute name="sessionCounter" oid=".2"/>
<attribute name="activeSessions" oid=".3"/>
<attribute name="maxActiveSessions" oid=".4" mode="rw"/>
<attribute name="sessionAverageAliveTime" oid=".5"/>
<attribute name="expiredSessions" oid=".6"/>
<attribute name="rejectedSessions" oid=".7"/>
<attribute name="maxInactiveInterval" oid=".8"/>
<attribute name="sessionMaxAliveTime" oid=".9"/>
<!-- name of the app -->
<attribute name="pathname" oid=".10"/>
</mbean>
Here the JBoss SNMP Adaptor will detect that the mbean name is a query and will return this as a Key Based Tabular Object (See Accessing JMX Beans Attributes as Tables) whose key will be the ASN.1 representation of the ObjectName of the MBean itself.
So to check all web applications deployed in the JBoss Web Container, the following commands should be issued :
snmpgetnext -v 3 -u TEST -a MD5 -A "maplesyrup" -x DES -X "maplesyrup" -l authPriv 127.0.0.1:1161 .1.3.6.1.4.1.2312.100.1.1.12.1
which gives the following output :
iso.3.6.1.4.1.2312.100.1.1.12.1.2.106.98.111.115.115.46.119.101.98.58.116.121.112.101.61.77.97.110.97.103.101.114.44.112.97.116.104.61.47.44.104.111.115.116.61.108.111.99.97.108.104.111.115.116 = INTEGER: 0
The OID is the concatenation of the OID prefix (.1.3.6.1.4.1.2312.100.1.1.12.1), first attribute (distributable, .2) and the ASN.1 representation of the following web application ObjectName "jboss.web:type=Manager,path=/,host=localhost"
Important Note: SNMP don't iterate through a full row before moving to the next one, it rather do it by column so keeping on the same attribute until all rows have been iterated before moving to the next attribute
From the important note above it means that querying with GetNextRequest PDU will give you the same distributable attribute but for the next application :
snmpgetnext -v 3 -u TEST -a MD5 -A "maplesyrup" -x DES -X "maplesyrup" -l authPriv 127.0.0.1:1161 .1.3.6.1.4.1.2312.100.1.1.12.1.2.106.98.111.115.115.46.119.101.98.58.116.121.112.101.61.77.97.110.97.103.101.114.44.112.97.116.104.61.47.44.104.111.115.116.61.108.111.99.97.108.104.111.115.116
which gives the following output
iso.3.6.1.4.1.2312.100.1.1.12.1.2.106.98.111.115.115.46.119.101.98.58.116.121.112.101.61.77.97.110.97.103.101.114.44.112.97.116.104.61.47.97.100.109.105.110.45.99.111.110.115.111.108.101.44.104.111.115.116.61.108.111.99.97.108.104.111.115.116 = INTEGER: 0
The OID is the concatenation of the OID prefix (.1.3.6.1.4.1.2312.100.1.1.12.1), first attribute (distributable, .2) and the ASN.1 representation of the following web application ObjectName "jboss.web:type=Manager,path=/admin-console,host=localhost"
and you can keep on going until the last row (application) for this attribute :
snmpgetnext -v 3 -u TEST -a MD5 -A "maplesyrup" -x DES -X "maplesyrup" -l authPriv 127.0.0.1:1161 iso.3.6.1.4.1.2312.100.1.1.12.1.2.106.98.111.115.115.46.119.101.98.58.116.121.112.101.61.77.97.110.97.103.101.114.44.112.97.116.104.61.47.119.101.98.45.99.111.110.115.111.108.101.44.104.111.115.116.61.108.111.99.97.108.104.111.115.116
which gives the following output
iso.3.6.1.4.1.2312.100.1.1.12.1.3.106.98.111.115.115.46.119.101.98.58.116.121.112.101.61.77.97.110.97.103.101.114.44.112.97.116.104.61.47.44.104.111.115.116.61.108.111.99.97.108.104.111.115.116
Notice the beginning of the OID iso.3.6.1.4.1.2312.100.1.1.12.1*.3* ends with .3 which means that it has reach the second column (sessionCounter attribute). And continue until the end of the table
To read the full table, it is possible to issue the following command which sends the next GetNextRequest PDU automatically until it has reached the end of the table
snmpwalk -v 3 -u TEST -a MD5 -A "maplesyrup" -x DES -X "maplesyrup" -l authPriv 127.0.0.1:1161 .1.3.6.1.4.1.2312.100.1.1.12.1
which gives the following output (full table)
Note : to make it more readable use the The MIB Generator and load the default JBoss MIB into Net-SNMP
iso.3.6.1.4.1.2312.100.1.1.12.1.2.106.98.111.115.115.46.119.101.98.58.116.121.112.101.61.77.97.110.97.103.101.114.44.112.97.116.104.61.47.44.104.111.115.116.61.108.111.99.97.108.104.111.115.116 = INTEGER: 0
iso.3.6.1.4.1.2312.100.1.1.12.1.2.106.98.111.115.115.46.119.101.98.58.116.121.112.101.61.77.97.110.97.103.101.114.44.112.97.116.104.61.47.97.100.109.105.110.45.99.111.110.115.111.108.101.44.104.111.115.116.61.108.111.99.97.108.104.111.115.116 = INTEGER: 0
iso.3.6.1.4.1.2312.100.1.1.12.1.2.106.98.111.115.115.46.119.101.98.58.116.121.112.101.61.77.97.110.97.103.101.114.44.112.97.116.104.61.47.105.110.118.111.107.101.114.44.104.111.115.116.61.108.111.99.97.108.104.111.115.116 = INTEGER: 0
iso.3.6.1.4.1.2312.100.1.1.12.1.2.106.98.111.115.115.46.119.101.98.58.116.121.112.101.61.77.97.110.97.103.101.114.44.112.97.116.104.61.47.106.98.111.115.115.119.115.44.104.111.115.116.61.108.111.99.97.108.104.111.115.116 = INTEGER: 0
iso.3.6.1.4.1.2312.100.1.1.12.1.2.106.98.111.115.115.46.119.101.98.58.116.121.112.101.61.77.97.110.97.103.101.114.44.112.97.116.104.61.47.106.109.120.45.99.111.110.115.111.108.101.44.104.111.115.116.61.108.111.99.97.108.104.111.115.116 = INTEGER: 0
iso.3.6.1.4.1.2312.100.1.1.12.1.2.106.98.111.115.115.46.119.101.98.58.116.121.112.101.61.77.97.110.97.103.101.114.44.112.97.116.104.61.47.115.105.112.45.115.101.114.118.108.101.116.115.45.109.97.110.97.103.101.109.101.110.116.44.104.111.115.116.61.108.111.99.97.108.104.111.115.116 = INTEGER: 0
iso.3.6.1.4.1.2312.100.1.1.12.1.2.106.98.111.115.115.46.119.101.98.58.116.121.112.101.61.77.97.110.97.103.101.114.44.112.97.116.104.61.47.115.110.109.112.45.115.101.114.118.108.101.116.45.53.46.49.46.48.46.71.65.44.104.111.115.116.61.108.111.99.97.108.104.111.115.116 = INTEGER: 0
iso.3.6.1.4.1.2312.100.1.1.12.1.2.106.98.111.115.115.46.119.101.98.58.116.121.112.101.61.77.97.110.97.103.101.114.44.112.97.116.104.61.47.119.101.98.45.99.111.110.115.111.108.101.44.104.111.115.116.61.108.111.99.97.108.104.111.115.116 = INTEGER: 0
iso.3.6.1.4.1.2312.100.1.1.12.1.3.106.98.111.115.115.46.119.101.98.58.116.121.112.101.61.77.97.110.97.103.101.114.44.112.97.116.104.61.47.44.104.111.115.116.61.108.111.99.97.108.104.111.115.116 = INTEGER: 0
iso.3.6.1.4.1.2312.100.1.1.12.1.3.106.98.111.115.115.46.119.101.98.58.116.121.112.101.61.77.97.110.97.103.101.114.44.112.97.116.104.61.47.97.100.109.105.110.45.99.111.110.115.111.108.101.44.104.111.115.116.61.108.111.99.97.108.104.111.115.116 = INTEGER: 0
iso.3.6.1.4.1.2312.100.1.1.12.1.3.106.98.111.115.115.46.119.101.98.58.116.121.112.101.61.77.97.110.97.103.101.114.44.112.97.116.104.61.47.105.110.118.111.107.101.114.44.104.111.115.116.61.108.111.99.97.108.104.111.115.116 = INTEGER: 0
iso.3.6.1.4.1.2312.100.1.1.12.1.3.106.98.111.115.115.46.119.101.98.58.116.121.112.101.61.77.97.110.97.103.101.114.44.112.97.116.104.61.47.106.98.111.115.115.119.115.44.104.111.115.116.61.108.111.99.97.108.104.111.115.116 = INTEGER: 0
iso.3.6.1.4.1.2312.100.1.1.12.1.3.106.98.111.115.115.46.119.101.98.58.116.121.112.101.61.77.97.110.97.103.101.114.44.112.97.116.104.61.47.106.109.120.45.99.111.110.115.111.108.101.44.104.111.115.116.61.108.111.99.97.108.104.111.115.116 = INTEGER: 0
iso.3.6.1.4.1.2312.100.1.1.12.1.3.106.98.111.115.115.46.119.101.98.58.116.121.112.101.61.77.97.110.97.103.101.114.44.112.97.116.104.61.47.115.105.112.45.115.101.114.118.108.101.116.115.45.109.97.110.97.103.101.109.101.110.116.44.104.111.115.116.61.108.111.99.97.108.104.111.115.116 = INTEGER: 0
iso.3.6.1.4.1.2312.100.1.1.12.1.3.106.98.111.115.115.46.119.101.98.58.116.121.112.101.61.77.97.110.97.103.101.114.44.112.97.116.104.61.47.115.110.109.112.45.115.101.114.118.108.101.116.45.53.46.49.46.48.46.71.65.44.104.111.115.116.61.108.111.99.97.108.104.111.115.116 = INTEGER: 0
iso.3.6.1.4.1.2312.100.1.1.12.1.3.106.98.111.115.115.46.119.101.98.58.116.121.112.101.61.77.97.110.97.103.101.114.44.112.97.116.104.61.47.119.101.98.45.99.111.110.115.111.108.101.44.104.111.115.116.61.108.111.99.97.108.104.111.115.116 = INTEGER: 0
iso.3.6.1.4.1.2312.100.1.1.12.1.4.106.98.111.115.115.46.119.101.98.58.116.121.112.101.61.77.97.110.97.103.101.114.44.112.97.116.104.61.47.44.104.111.115.116.61.108.111.99.97.108.104.111.115.116 = INTEGER: 0
iso.3.6.1.4.1.2312.100.1.1.12.1.4.106.98.111.115.115.46.119.101.98.58.116.121.112.101.61.77.97.110.97.103.101.114.44.112.97.116.104.61.47.97.100.109.105.110.45.99.111.110.115.111.108.101.44.104.111.115.116.61.108.111.99.97.108.104.111.115.116 = INTEGER: 0
iso.3.6.1.4.1.2312.100.1.1.12.1.4.106.98.111.115.115.46.119.101.98.58.116.121.112.101.61.77.97.110.97.103.101.114.44.112.97.116.104.61.47.105.110.118.111.107.101.114.44.104.111.115.116.61.108.111.99.97.108.104.111.115.116 = INTEGER: 0
iso.3.6.1.4.1.2312.100.1.1.12.1.4.106.98.111.115.115.46.119.101.98.58.116.121.112.101.61.77.97.110.97.103.101.114.44.112.97.116.104.61.47.106.98.111.115.115.119.115.44.104.111.115.116.61.108.111.99.97.108.104.111.115.116 = INTEGER: 0
iso.3.6.1.4.1.2312.100.1.1.12.1.4.106.98.111.115.115.46.119.101.98.58.116.121.112.101.61.77.97.110.97.103.101.114.44.112.97.116.104.61.47.106.109.120.45.99.111.110.115.111.108.101.44.104.111.115.116.61.108.111.99.97.108.104.111.115.116 = INTEGER: 0
iso.3.6.1.4.1.2312.100.1.1.12.1.4.106.98.111.115.115.46.119.101.98.58.116.121.112.101.61.77.97.110.97.103.101.114.44.112.97.116.104.61.47.115.105.112.45.115.101.114.118.108.101.116.115.45.109.97.110.97.103.101.109.101.110.116.44.104.111.115.116.61.108.111.99.97.108.104.111.115.116 = INTEGER: 0
iso.3.6.1.4.1.2312.100.1.1.12.1.4.106.98.111.115.115.46.119.101.98.58.116.121.112.101.61.77.97.110.97.103.101.114.44.112.97.116.104.61.47.115.110.109.112.45.115.101.114.118.108.101.116.45.53.46.49.46.48.46.71.65.44.104.111.115.116.61.108.111.99.97.108.104.111.115.116 = INTEGER: 0
iso.3.6.1.4.1.2312.100.1.1.12.1.4.106.98.111.115.115.46.119.101.98.58.116.121.112.101.61.77.97.110.97.103.101.114.44.112.97.116.104.61.47.119.101.98.45.99.111.110.115.111.108.101.44.104.111.115.116.61.108.111.99.97.108.104.111.115.116 = INTEGER: 0
iso.3.6.1.4.1.2312.100.1.1.12.1.5.106.98.111.115.115.46.119.101.98.58.116.121.112.101.61.77.97.110.97.103.101.114.44.112.97.116.104.61.47.44.104.111.115.116.61.108.111.99.97.108.104.111.115.116 = INTEGER: -1
iso.3.6.1.4.1.2312.100.1.1.12.1.5.106.98.111.115.115.46.119.101.98.58.116.121.112.101.61.77.97.110.97.103.101.114.44.112.97.116.104.61.47.97.100.109.105.110.45.99.111.110.115.111.108.101.44.104.111.115.116.61.108.111.99.97.108.104.111.115.116 = INTEGER: -1
iso.3.6.1.4.1.2312.100.1.1.12.1.5.106.98.111.115.115.46.119.101.98.58.116.121.112.101.61.77.97.110.97.103.101.114.44.112.97.116.104.61.47.105.110.118.111.107.101.114.44.104.111.115.116.61.108.111.99.97.108.104.111.115.116 = INTEGER: -1
iso.3.6.1.4.1.2312.100.1.1.12.1.5.106.98.111.115.115.46.119.101.98.58.116.121.112.101.61.77.97.110.97.103.101.114.44.112.97.116.104.61.47.106.98.111.115.115.119.115.44.104.111.115.116.61.108.111.99.97.108.104.111.115.116 = INTEGER: -1
iso.3.6.1.4.1.2312.100.1.1.12.1.5.106.98.111.115.115.46.119.101.98.58.116.121.112.101.61.77.97.110.97.103.101.114.44.112.97.116.104.61.47.106.109.120.45.99.111.110.115.111.108.101.44.104.111.115.116.61.108.111.99.97.108.104.111.115.116 = INTEGER: -1
iso.3.6.1.4.1.2312.100.1.1.12.1.5.106.98.111.115.115.46.119.101.98.58.116.121.112.101.61.77.97.110.97.103.101.114.44.112.97.116.104.61.47.115.105.112.45.115.101.114.118.108.101.116.115.45.109.97.110.97.103.101.109.101.110.116.44.104.111.115.116.61.108.111.99.97.108.104.111.115.116 = INTEGER: -1
iso.3.6.1.4.1.2312.100.1.1.12.1.5.106.98.111.115.115.46.119.101.98.58.116.121.112.101.61.77.97.110.97.103.101.114.44.112.97.116.104.61.47.115.110.109.112.45.115.101.114.118.108.101.116.45.53.46.49.46.48.46.71.65.44.104.111.115.116.61.108.111.99.97.108.104.111.115.116 = INTEGER: -1
iso.3.6.1.4.1.2312.100.1.1.12.1.5.106.98.111.115.115.46.119.101.98.58.116.121.112.101.61.77.97.110.97.103.101.114.44.112.97.116.104.61.47.119.101.98.45.99.111.110.115.111.108.101.44.104.111.115.116.61.108.111.99.97.108.104.111.115.116 = INTEGER: -1
iso.3.6.1.4.1.2312.100.1.1.12.1.6.106.98.111.115.115.46.119.101.98.58.116.121.112.101.61.77.97.110.97.103.101.114.44.112.97.116.104.61.47.44.104.111.115.116.61.108.111.99.97.108.104.111.115.116 = INTEGER: 0
iso.3.6.1.4.1.2312.100.1.1.12.1.6.106.98.111.115.115.46.119.101.98.58.116.121.112.101.61.77.97.110.97.103.101.114.44.112.97.116.104.61.47.97.100.109.105.110.45.99.111.110.115.111.108.101.44.104.111.115.116.61.108.111.99.97.108.104.111.115.116 = INTEGER: 0
iso.3.6.1.4.1.2312.100.1.1.12.1.6.106.98.111.115.115.46.119.101.98.58.116.121.112.101.61.77.97.110.97.103.101.114.44.112.97.116.104.61.47.105.110.118.111.107.101.114.44.104.111.115.116.61.108.111.99.97.108.104.111.115.116 = INTEGER: 0
iso.3.6.1.4.1.2312.100.1.1.12.1.6.106.98.111.115.115.46.119.101.98.58.116.121.112.101.61.77.97.110.97.103.101.114.44.112.97.116.104.61.47.106.98.111.115.115.119.115.44.104.111.115.116.61.108.111.99.97.108.104.111.115.116 = INTEGER: 0
iso.3.6.1.4.1.2312.100.1.1.12.1.6.106.98.111.115.115.46.119.101.98.58.116.121.112.101.61.77.97.110.97.103.101.114.44.112.97.116.104.61.47.106.109.120.45.99.111.110.115.111.108.101.44.104.111.115.116.61.108.111.99.97.108.104.111.115.116 = INTEGER: 0
iso.3.6.1.4.1.2312.100.1.1.12.1.6.106.98.111.115.115.46.119.101.98.58.116.121.112.101.61.77.97.110.97.103.101.114.44.112.97.116.104.61.47.115.105.112.45.115.101.114.118.108.101.116.115.45.109.97.110.97.103.101.109.101.110.116.44.104.111.115.116.61.108.111.99.97.108.104.111.115.116 = INTEGER: 0
iso.3.6.1.4.1.2312.100.1.1.12.1.6.106.98.111.115.115.46.119.101.98.58.116.121.112.101.61.77.97.110.97.103.101.114.44.112.97.116.104.61.47.115.110.109.112.45.115.101.114.118.108.101.116.45.53.46.49.46.48.46.71.65.44.104.111.115.116.61.108.111.99.97.108.104.111.115.116 = INTEGER: 0
iso.3.6.1.4.1.2312.100.1.1.12.1.6.106.98.111.115.115.46.119.101.98.58.116.121.112.101.61.77.97.110.97.103.101.114.44.112.97.116.104.61.47.119.101.98.45.99.111.110.115.111.108.101.44.104.111.115.116.61.108.111.99.97.108.104.111.115.116 = INTEGER: 0
iso.3.6.1.4.1.2312.100.1.1.12.1.7.106.98.111.115.115.46.119.101.98.58.116.121.112.101.61.77.97.110.97.103.101.114.44.112.97.116.104.61.47.44.104.111.115.116.61.108.111.99.97.108.104.111.115.116 = INTEGER: 0
iso.3.6.1.4.1.2312.100.1.1.12.1.7.106.98.111.115.115.46.119.101.98.58.116.121.112.101.61.77.97.110.97.103.101.114.44.112.97.116.104.61.47.97.100.109.105.110.45.99.111.110.115.111.108.101.44.104.111.115.116.61.108.111.99.97.108.104.111.115.116 = INTEGER: 0
iso.3.6.1.4.1.2312.100.1.1.12.1.7.106.98.111.115.115.46.119.101.98.58.116.121.112.101.61.77.97.110.97.103.101.114.44.112.97.116.104.61.47.105.110.118.111.107.101.114.44.104.111.115.116.61.108.111.99.97.108.104.111.115.116 = INTEGER: 0
iso.3.6.1.4.1.2312.100.1.1.12.1.7.106.98.111.115.115.46.119.101.98.58.116.121.112.101.61.77.97.110.97.103.101.114.44.112.97.116.104.61.47.106.98.111.115.115.119.115.44.104.111.115.116.61.108.111.99.97.108.104.111.115.116 = INTEGER: 0
iso.3.6.1.4.1.2312.100.1.1.12.1.7.106.98.111.115.115.46.119.101.98.58.116.121.112.101.61.77.97.110.97.103.101.114.44.112.97.116.104.61.47.106.109.120.45.99.111.110.115.111.108.101.44.104.111.115.116.61.108.111.99.97.108.104.111.115.116 = INTEGER: 0
iso.3.6.1.4.1.2312.100.1.1.12.1.7.106.98.111.115.115.46.119.101.98.58.116.121.112.101.61.77.97.110.97.103.101.114.44.112.97.116.104.61.47.115.105.112.45.115.101.114.118.108.101.116.115.45.109.97.110.97.103.101.109.101.110.116.44.104.111.115.116.61.108.111.99.97.108.104.111.115.116 = INTEGER: 0
iso.3.6.1.4.1.2312.100.1.1.12.1.7.106.98.111.115.115.46.119.101.98.58.116.121.112.101.61.77.97.110.97.103.101.114.44.112.97.116.104.61.47.115.110.109.112.45.115.101.114.118.108.101.116.45.53.46.49.46.48.46.71.65.44.104.111.115.116.61.108.111.99.97.108.104.111.115.116 = INTEGER: 0
iso.3.6.1.4.1.2312.100.1.1.12.1.7.106.98.111.115.115.46.119.101.98.58.116.121.112.101.61.77.97.110.97.103.101.114.44.112.97.116.104.61.47.119.101.98.45.99.111.110.115.111.108.101.44.104.111.115.116.61.108.111.99.97.108.104.111.115.116 = INTEGER: 0
iso.3.6.1.4.1.2312.100.1.1.12.1.8.106.98.111.115.115.46.119.101.98.58.116.121.112.101.61.77.97.110.97.103.101.114.44.112.97.116.104.61.47.44.104.111.115.116.61.108.111.99.97.108.104.111.115.116 = INTEGER: 0
iso.3.6.1.4.1.2312.100.1.1.12.1.8.106.98.111.115.115.46.119.101.98.58.116.121.112.101.61.77.97.110.97.103.101.114.44.112.97.116.104.61.47.97.100.109.105.110.45.99.111.110.115.111.108.101.44.104.111.115.116.61.108.111.99.97.108.104.111.115.116 = INTEGER: 0
iso.3.6.1.4.1.2312.100.1.1.12.1.8.106.98.111.115.115.46.119.101.98.58.116.121.112.101.61.77.97.110.97.103.101.114.44.112.97.116.104.61.47.105.110.118.111.107.101.114.44.104.111.115.116.61.108.111.99.97.108.104.111.115.116 = INTEGER: 0
iso.3.6.1.4.1.2312.100.1.1.12.1.8.106.98.111.115.115.46.119.101.98.58.116.121.112.101.61.77.97.110.97.103.101.114.44.112.97.116.104.61.47.106.98.111.115.115.119.115.44.104.111.115.116.61.108.111.99.97.108.104.111.115.116 = INTEGER: 0
iso.3.6.1.4.1.2312.100.1.1.12.1.8.106.98.111.115.115.46.119.101.98.58.116.121.112.101.61.77.97.110.97.103.101.114.44.112.97.116.104.61.47.106.109.120.45.99.111.110.115.111.108.101.44.104.111.115.116.61.108.111.99.97.108.104.111.115.116 = INTEGER: 0
iso.3.6.1.4.1.2312.100.1.1.12.1.8.106.98.111.115.115.46.119.101.98.58.116.121.112.101.61.77.97.110.97.103.101.114.44.112.97.116.104.61.47.115.105.112.45.115.101.114.118.108.101.116.115.45.109.97.110.97.103.101.109.101.110.116.44.104.111.115.116.61.108.111.99.97.108.104.111.115.116 = INTEGER: 0
iso.3.6.1.4.1.2312.100.1.1.12.1.8.106.98.111.115.115.46.119.101.98.58.116.121.112.101.61.77.97.110.97.103.101.114.44.112.97.116.104.61.47.115.110.109.112.45.115.101.114.118.108.101.116.45.53.46.49.46.48.46.71.65.44.104.111.115.116.61.108.111.99.97.108.104.111.115.116 = INTEGER: 0
iso.3.6.1.4.1.2312.100.1.1.12.1.8.106.98.111.115.115.46.119.101.98.58.116.121.112.101.61.77.97.110.97.103.101.114.44.112.97.116.104.61.47.119.101.98.45.99.111.110.115.111.108.101.44.104.111.115.116.61.108.111.99.97.108.104.111.115.116 = INTEGER: 0
iso.3.6.1.4.1.2312.100.1.1.12.1.9.106.98.111.115.115.46.119.101.98.58.116.121.112.101.61.77.97.110.97.103.101.114.44.112.97.116.104.61.47.44.104.111.115.116.61.108.111.99.97.108.104.111.115.116 = INTEGER: 1800
iso.3.6.1.4.1.2312.100.1.1.12.1.9.106.98.111.115.115.46.119.101.98.58.116.121.112.101.61.77.97.110.97.103.101.114.44.112.97.116.104.61.47.97.100.109.105.110.45.99.111.110.115.111.108.101.44.104.111.115.116.61.108.111.99.97.108.104.111.115.116 = INTEGER: 1800
iso.3.6.1.4.1.2312.100.1.1.12.1.9.106.98.111.115.115.46.119.101.98.58.116.121.112.101.61.77.97.110.97.103.101.114.44.112.97.116.104.61.47.105.110.118.111.107.101.114.44.104.111.115.116.61.108.111.99.97.108.104.111.115.116 = INTEGER: 1800
iso.3.6.1.4.1.2312.100.1.1.12.1.9.106.98.111.115.115.46.119.101.98.58.116.121.112.101.61.77.97.110.97.103.101.114.44.112.97.116.104.61.47.106.98.111.115.115.119.115.44.104.111.115.116.61.108.111.99.97.108.104.111.115.116 = INTEGER: 1800
iso.3.6.1.4.1.2312.100.1.1.12.1.9.106.98.111.115.115.46.119.101.98.58.116.121.112.101.61.77.97.110.97.103.101.114.44.112.97.116.104.61.47.106.109.120.45.99.111.110.115.111.108.101.44.104.111.115.116.61.108.111.99.97.108.104.111.115.116 = INTEGER: 1800
iso.3.6.1.4.1.2312.100.1.1.12.1.9.106.98.111.115.115.46.119.101.98.58.116.121.112.101.61.77.97.110.97.103.101.114.44.112.97.116.104.61.47.115.105.112.45.115.101.114.118.108.101.116.115.45.109.97.110.97.103.101.109.101.110.116.44.104.111.115.116.61.108.111.99.97.108.104.111.115.116 = INTEGER: 1800
iso.3.6.1.4.1.2312.100.1.1.12.1.9.106.98.111.115.115.46.119.101.98.58.116.121.112.101.61.77.97.110.97.103.101.114.44.112.97.116.104.61.47.115.110.109.112.45.115.101.114.118.108.101.116.45.53.46.49.46.48.46.71.65.44.104.111.115.116.61.108.111.99.97.108.104.111.115.116 = INTEGER: 1800
iso.3.6.1.4.1.2312.100.1.1.12.1.9.106.98.111.115.115.46.119.101.98.58.116.121.112.101.61.77.97.110.97.103.101.114.44.112.97.116.104.61.47.119.101.98.45.99.111.110.115.111.108.101.44.104.111.115.116.61.108.111.99.97.108.104.111.115.116 = INTEGER: 1800
iso.3.6.1.4.1.2312.100.1.1.12.1.10.106.98.111.115.115.46.119.101.98.58.116.121.112.101.61.77.97.110.97.103.101.114.44.112.97.116.104.61.47.44.104.111.115.116.61.108.111.99.97.108.104.111.115.116 = INTEGER: 0
iso.3.6.1.4.1.2312.100.1.1.12.1.10.106.98.111.115.115.46.119.101.98.58.116.121.112.101.61.77.97.110.97.103.101.114.44.112.97.116.104.61.47.97.100.109.105.110.45.99.111.110.115.111.108.101.44.104.111.115.116.61.108.111.99.97.108.104.111.115.116 = INTEGER: 0
iso.3.6.1.4.1.2312.100.1.1.12.1.10.106.98.111.115.115.46.119.101.98.58.116.121.112.101.61.77.97.110.97.103.101.114.44.112.97.116.104.61.47.105.110.118.111.107.101.114.44.104.111.115.116.61.108.111.99.97.108.104.111.115.116 = INTEGER: 0
iso.3.6.1.4.1.2312.100.1.1.12.1.10.106.98.111.115.115.46.119.101.98.58.116.121.112.101.61.77.97.110.97.103.101.114.44.112.97.116.104.61.47.106.98.111.115.115.119.115.44.104.111.115.116.61.108.111.99.97.108.104.111.115.116 = INTEGER: 0
iso.3.6.1.4.1.2312.100.1.1.12.1.10.106.98.111.115.115.46.119.101.98.58.116.121.112.101.61.77.97.110.97.103.101.114.44.112.97.116.104.61.47.106.109.120.45.99.111.110.115.111.108.101.44.104.111.115.116.61.108.111.99.97.108.104.111.115.116 = INTEGER: 0
iso.3.6.1.4.1.2312.100.1.1.12.1.10.106.98.111.115.115.46.119.101.98.58.116.121.112.101.61.77.97.110.97.103.101.114.44.112.97.116.104.61.47.115.105.112.45.115.101.114.118.108.101.116.115.45.109.97.110.97.103.101.109.101.110.116.44.104.111.115.116.61.108.111.99.97.108.104.111.115.116 = INTEGER: 0
iso.3.6.1.4.1.2312.100.1.1.12.1.10.106.98.111.115.115.46.119.101.98.58.116.121.112.101.61.77.97.110.97.103.101.114.44.112.97.116.104.61.47.115.110.109.112.45.115.101.114.118.108.101.116.45.53.46.49.46.48.46.71.65.44.104.111.115.116.61.108.111.99.97.108.104.111.115.116 = INTEGER: 0
iso.3.6.1.4.1.2312.100.1.1.12.1.10.106.98.111.115.115.46.119.101.98.58.116.121.112.101.61.77.97.110.97.103.101.114.44.112.97.116.104.61.47.119.101.98.45.99.111.110.115.111.108.101.44.104.111.115.116.61.108.111.99.97.108.104.111.115.116 = INTEGER: 0